home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / LIBGPP / LIBSTDC / !libstdc / h / string < prev   
Text File  |  1995-06-07  |  628b  |  20 lines

  1. // -*- C++ -*- forwarding header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __CP_STRING_H__
  5. #include <cstring>
  6.  
  7. #if _G_NS
  8. using std::memchr;   using std::memcmp;   using std::memcpy;
  9. using std::memmove;  using std::memset;
  10. using std::strcoll;  using std::strcat;   using std::strchr;
  11. using std::strcmp;   using std::strcpy;   using std::strcspn;
  12. using std::strerror; using std::strlen;   using std::strncat;
  13. using std::strncmp;  using std::strncpy;  using std::strpbrk;
  14. using std::strrchr;  using std::strspn;   using std::strstr;
  15. using std::strtok;   using std::strxfrm;
  16. #endif
  17.  
  18. #define __CP_STRING_H__
  19. #endif
  20.